home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / cmds / gdb-4.5 / dist / libiberty / vprintf.c < prev    next >
Encoding:
C/C++ Source or Header  |  1991-10-26  |  160 b   |  11 lines

  1. #include <stdio.h>
  2. #include <varargs.h>
  3. #undef vprintf
  4. int
  5. vprintf (format, ap)
  6.      char *format;
  7.      va_list ap;
  8. {
  9.   return vfprintf (stdout, format, ap);
  10. }
  11.